home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club (Business) 1997 July / Software of the Month Club - Business (Volume 239) (July 1997).iso / pc / code / debug / memmon.dir / 00076_Profile scripts.ls < prev    next >
Encoding:
Text File  |  1995-02-15  |  427 b   |  15 lines

  1. on ProfileCasts
  2.   set output to EMPTY
  3.   repeat with temp = 1 to the number of castMembers
  4.     if the castType of cast temp <> #empty then
  5.       set castSize to the size of cast temp / 1024
  6.       if castSize < 1 then
  7.         put "Cast" && temp && "is <1k" & RETURN after output
  8.         next repeat
  9.       end if
  10.       put "Cast" && temp && "is" && castSize & "k" & RETURN after output
  11.     end if
  12.   end repeat
  13.   return output
  14. end
  15.